home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac Easy 2010 May
/
Mac Life Ubuntu.iso
/
casper
/
filesystem.squashfs
/
usr
/
share
/
doc
/
python-apt
/
examples
/
metaindex.py
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2009-03-30
|
300 b
|
16 lines
import apt_pkg
apt_pkg.init()
sources = apt_pkg.GetPkgSourceList()
sources.ReadMainList()
for metaindex in sources.List:
print metaindex
print "URI: ", metaindex.URI
print "Dist: ", metaindex.Dist
print "IndexFiles: ", "\n".join([str(i) for i in metaindex.IndexFiles])
print